home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / cron / README < prev    next >
Text File  |  2009-09-15  |  4KB  |  79 lines

  1. #/* Copyright 1988,1990,1993 by Paul Vixie
  2. # * All rights reserved
  3. # *
  4. # * Distribute freely, except: don't remove my name from the source or
  5. # * documentation (don't take credit for my work), mark your changes (don't
  6. # * get me blamed for your possible bugs), don't alter or remove this
  7. # * notice.  May be sold if buildable source is provided to buyer.  No
  8. # * warrantee of any kind, express or implied, is included with this
  9. # * software; use at your own risk, responsibility for damages (if any) to
  10. # * anyone resulting from the use of this software rests entirely with the
  11. # * user.
  12. # *
  13. # * Send bug reports, bug fixes, enhancements, requests, flames, etc., and
  14. # * I'll try to keep a version up to date.  I can be reached as follows:
  15. # * Paul Vixie          <paul@vix.com>          uunet!decwrl!vixie!paul
  16. # */
  17.  
  18. Vixie Cron V3.0
  19. December 27, 1993
  20. [V2.2 was some time in 1992]
  21. [V2.1 was May 29, 1991]
  22. [V2.0 was July 5, 1990]
  23. [V2.0-beta was December 9, 1988]
  24. [V1.0 was May 6, 1987]
  25. Paul Vixie
  26.  
  27. [Note from Debian cron maintainer: This is the original README from
  28. the the vixie-cron package. The location of many cron files has been
  29. changed in order to comply with Debian policy and common sense -- look
  30. in the cron(8), crontab(1) and crontab(5) man pages for more info, as
  31. well as the README.Debian file in this directory.]
  32.  
  33. This is a version of 'cron' that is known to run on BSD 4.[23] systems.  It
  34. is functionally based on the SysV cron, which means that each user can have
  35. their own crontab file (all crontab files are stored in a read-protected
  36. directory, usually /var/cron/tabs).  No direct support is provided for
  37. 'at'; you can continue to run 'atrun' from the crontab as you have been
  38. doing.  If you don't have atrun (i.e., System V) you are in trouble.
  39.  
  40. A messages is logged each time a command is executed; also, the files
  41. "allow" and "deny" in /var/cron can be used to control access to the
  42. "crontab" command (which installs crontabs).  It hasn't been tested on
  43. SysV, although some effort has gone into making the port an easy one.
  44.  
  45. This is more or less the copyright that USENET contributed software usually
  46. has.  Since ATT couldn't use this version if they had to freely distribute
  47. source, and since I'd love to see them use it, I'll offer some rediculously
  48. low license fee just to have them take it.  In the unlikely event that they
  49. do this, I will continue to support and distribute the pseudo-PD version, so
  50. please, don't flame me for wanting my work to see a wider distribution.
  51.  
  52. To use this: Sorry, folks, there is no cutesy 'Configure' script.  You'll
  53. have to go edit a couple of files... So, here's the checklist:
  54.  
  55.     Read all the FEATURES, INSTALL, and CONVERSION files
  56.     Edit config.h
  57.     Edit Makefile
  58.         (both of these files have instructions inside; note that
  59.          some things in config.h are definable in Makefile and are
  60.          therefore surrounded by #ifndef...#endif)
  61.     'make'
  62.     'su' and 'make install'
  63.         (you may have to install the man pages by hand)
  64.     kill your existing cron process
  65.         (actually you can run your existing cron if you want, but why?)
  66.     build new crontabs using /usr/lib/{crontab,crontab.local}
  67.         (either put them all in "root"'s crontab, or divide it up
  68.          and rip out all the 'su' commands, collapse the lengthy
  69.          lists into ranges with steps -- basically, this step is
  70.          as much work as you want to make it)
  71.     start up the new cron
  72.         (must be done as root)
  73.     watch it. test it with 'crontab -r' and watch the daemon track your
  74.         changes.
  75.     if you like it, change your /etc/{rc,rc.local} to use it instead of
  76.         the old one.
  77.  
  78. $Id: README,v 2.3 1993/12/28 08:34:43 vixie Exp $
  79.